home *** CD-ROM | disk | FTP | other *** search
/ Computer Select (Limited Edition) / Computer Select.iso / dobbs / v17n04 / handprin.urc / (InkEdit) / CEditPane.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-02-29  |  638 b   |  29 lines  |  [TEXT/KAHL]

  1. /****
  2.  * CEditPane.h
  3.  *
  4.  *    A text edit pane for a tiny editor.
  5.  *
  6.  ****/
  7.  
  8.  
  9. #define _H_CEditPane
  10.  
  11. #include <CEditText.h>
  12.  
  13. struct CEditPane : CEditText {
  14.  
  15.  
  16.                                 /** Instance Methods **/
  17.                                     /** Contruction/Destruction **/
  18.     void    IEditPane(CView *anEnclosure, CBureaucrat *aSupervisor);
  19.  
  20.                                     /** Command **/
  21.     void    DoCommand(long theCommand);
  22.  
  23.                                     /** Mouse and Keystrokes **/
  24.     void    DoKeyDown(char theChar, Byte keyCode, EventRecord *macEvent);
  25.     void    DoAutoKey(char theChar, Byte keyCode, EventRecord *macEvent);
  26.     void    DoClick(Point hitPt,short modifierKeys,long when);
  27.     void    AdjustCursor(Point where,RgnHandle mouseRgn);
  28. };
  29.